home *** CD-ROM | disk | FTP | other *** search
/ Info-Mac 4 / Info_Mac IV CD-ROM (Pacific HiTech Inc.)(August 1994).iso / Development / General / ViewIt™ 2.24 Shareware / C++ Demo Projects / Metrowerks C++ 1.0a4 Demos / MinimumMC+.cp < prev    next >
Text File  |  1994-03-02  |  269b  |  15 lines

  1. /* Minimum MC+ Demonstration Program */
  2. /* ©FaceWare 1991-94.  All Rights Reserved. */
  3.  
  4. #include <string.h>
  5. #include "FaceStorMC+.h"
  6. extern struct FaceRec fRec;
  7.  
  8. void main()
  9. {
  10.     strcpy(fRec.uName, "Minimum.Rsrc");
  11.     FaceIt(0,DoInit);
  12.     for (;;) {
  13.         FaceIt(0,DoLoop);
  14.         }
  15. }